home *** CD-ROM | disk | FTP | other *** search
-
- static char RCSId[]="$Id: NoPane.m,v 1.1.1.1 1993/03/18 03:34:37 davis Exp $";
-
-
- #import <appkit/Application.h>
- #import <appkit/View.h>
-
- #import "NoPane.h"
-
-
- @implementation NoPane
-
-
- - init
- {
- [super init];
-
- [NXApp loadNibSection: "NoPane.nib"
- owner: self
- withNames: NO
- fromZone: [self zone]];
-
- view = [window setContentView:[[View alloc] init]];
-
- title = NULL;
- icon = NULL;
- status = nil;
- doc = nil;
-
- return self;
- }
-
-
- - updateStatus:aStatus doc:aDoc
- {
- return nil;
- }
-
-
- // Shuts up the compiler about unused RCSId
- - (const char *) rcsid
- {
- return RCSId;
- }
-
-
- @end
-